'Declaration Public Overloads Function BeginInvoke( _ ByVal method As Delegate, _ ByVal ParamArray args() As Object _ ) As IAsyncResult
public IAsyncResult BeginInvoke( Delegate method, params object[] args )
Parameters
- method
- A delegate to a method that takes parameters of the same number and type that are contained in the args parameter.
- args
- An array of objects to pass as arguments to the given method. This can be null if no arguments are needed.
Return Value
An System.IAsyncResult that represents the result of the System.Windows.Forms.Control.BeginInvoke(System.Delegate) operation.